码迷,mamicode.com
首页 >  
搜索关键字:os x|程序员    ( 139979个结果
No Module named "MYSqlDb"
今天换机以后,原来的代码不能运行了,报错。 好像是缺少包 问题描述: 报错:ImportError: No module named MySQLdb 对于不同的系统和程序有如下的解决方法: easy_install mysql-python (mix os) pip install mysql-py ...
分类:数据库   时间:2020-07-15 23:41:22    阅读次数:79
zabbix 客户端部署
1、下载更新源 地址;https://www.zabbix.com/cn/download?zabbix=4.0&os_distribution=centos&os_version=7&db=postgresql&ws=apache 例:rpm -Uvh https://repo.zabbix.co ...
分类:其他好文   时间:2020-07-15 16:00:25    阅读次数:90
用Python遍历目录树
代码如下:import ospath = 'C:\\tmp\\2020-07-14'for folderName, subfolders, filenames in os.walk(path): print('The current folder is ' + folderName) for sub... ...
分类:编程语言   时间:2020-07-15 15:38:46    阅读次数:69
Centos7下安装yum工具
需求 如果不小心在机器上卸载了yum工具,或者yum工具被破坏了,需要重新装yum工具 1、卸载yum源 rpm -qa|grep yum|xargs rpm -e --nodeps 2、下载相关关于yum源的包 wget http://mirrors.163.com/centos/7/os/x86 ...
分类:其他好文   时间:2020-07-15 01:24:14    阅读次数:158
Django logging配置
settings.py import time cur_path = os.path.dirname(os.path.realpath(__file__)) # log_path是存放日志的路径 log_path = os.path.join(os.path.dirname(cur_path), ' ...
分类:其他好文   时间:2020-07-14 18:48:19    阅读次数:92
项目记录 | 某项目wcms4.0
今天在项目中碰到了wcmc4.0这款cms,弱口令进入后台,发现搜索框有注入,可以最终拿下了sql-shell,但是当我们进行os-shell的时候发现,找不到其路径,于是我们使用selec t@@plugin_dir找到其插件的路径。于是尝试使用sql-shell写shell结果发现sqlmap爆 ...
分类:其他好文   时间:2020-07-14 18:26:38    阅读次数:92
python批量转换excl为csv
import pandas as pdimport os#获取exclexcl_files = []path = os.getcwd()print(path)files = os.listdir(path)print(files)for file in files: # print(file.spl ...
分类:编程语言   时间:2020-07-14 18:03:16    阅读次数:69
python实现文件解压,遍历及使用winrm模块上传到Windows主机
import os import tarfile import zipfile import threading import winrm LOCAL_FILE_PATH = "C:\\" THREAD_MAX = threading.BoundedSemaphore(10) CONN_FLAG = ...
分类:编程语言   时间:2020-07-14 13:25:40    阅读次数:100
lua os.time和os.data详解
os.date ([format [, time]]) Returns a string or a table containing date and time, formatted according to the given string format. If the time argument ...
分类:其他好文   时间:2020-07-14 12:59:15    阅读次数:223
python 爬百度贴吧
import urllib.requestimport urllib.parseurl="https://tieba.baidu.com/f"word=input("请输入要爬的贴吧")#将贴吧名称变成url码word=urllib.parse.quote(word)#完整输入贴吧链接newUrl= ...
分类:编程语言   时间:2020-07-14 00:21:35    阅读次数:56
139979条   上一页 1 ... 44 45 46 47 48 ... 13998 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!